home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / test_strftime.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  5KB  |  126 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. import time
  5. import calendar
  6. import sys
  7. import os
  8. import re
  9. verbose = verbose
  10. import test.test_support
  11.  
  12. def main():
  13.     global verbose
  14.     
  15.     try:
  16.         import java as java
  17.         java.util.Locale.setDefault(java.util.Locale.US)
  18.     except ImportError:
  19.         import locale as locale
  20.         locale.setlocale(locale.LC_TIME, 'C')
  21.  
  22.     now = time.time()
  23.     strftest(now)
  24.     verbose = 0
  25.     for j in range(-5, 5):
  26.         for i in range(25):
  27.             strftest(now + (i + j * 100) * 23 * 3603)
  28.         
  29.     
  30.  
  31.  
  32. def escapestr(text, ampm):
  33.     '''Escape text to deal with possible locale values that have regex
  34.     syntax while allowing regex syntax used for the comparison.'''
  35.     new_text = re.escape(text)
  36.     new_text = new_text.replace(re.escape(ampm), ampm)
  37.     new_text = new_text.replace('\\%', '%')
  38.     new_text = new_text.replace('\\:', ':')
  39.     new_text = new_text.replace('\\?', '?')
  40.     return new_text
  41.  
  42.  
  43. def strftest(now):
  44.     if verbose:
  45.         print 'strftime test for', time.ctime(now)
  46.     
  47.     nowsecs = str(long(now))[:-1]
  48.     gmt = time.gmtime(now)
  49.     now = time.localtime(now)
  50.     if now[3] < 12:
  51.         ampm = '(AM|am)'
  52.     else:
  53.         ampm = '(PM|pm)'
  54.     jan1 = time.localtime(time.mktime((now[0], 1, 1, 0, 0, 0, 0, 1, 0)))
  55.     
  56.     try:
  57.         if now[8]:
  58.             tz = time.tzname[1]
  59.         else:
  60.             tz = time.tzname[0]
  61.     except AttributeError:
  62.         tz = ''
  63.  
  64.     if now[3] > 12:
  65.         clock12 = now[3] - 12
  66.     elif now[3] > 0:
  67.         clock12 = now[3]
  68.     else:
  69.         clock12 = 12
  70.     expectations = (('%a', calendar.day_abbr[now[6]], 'abbreviated weekday name'), ('%A', calendar.day_name[now[6]], 'full weekday name'), ('%b', calendar.month_abbr[now[1]], 'abbreviated month name'), ('%B', calendar.month_name[now[1]], 'full month name'), ('%d', '%02d' % now[2], 'day of month as number (00-31)'), ('%H', '%02d' % now[3], 'hour (00-23)'), ('%I', '%02d' % clock12, 'hour (01-12)'), ('%j', '%03d' % now[7], 'julian day (001-366)'), ('%m', '%02d' % now[1], 'month as number (01-12)'), ('%M', '%02d' % now[4], 'minute, (00-59)'), ('%p', ampm, 'AM or PM as appropriate'), ('%S', '%02d' % now[5], 'seconds of current time (00-60)'), ('%U', '%02d' % (now[7] + jan1[6]) // 7, 'week number of the year (Sun 1st)'), ('%w', '0?%d' % (1 + now[6]) % 7, 'weekday as a number (Sun 1st)'), ('%W', '%02d' % (now[7] + (jan1[6] - 1) % 7) // 7, 'week number of the year (Mon 1st)'), ('%X', '%02d:%02d:%02d' % (now[3], now[4], now[5]), '%H:%M:%S'), ('%y', '%02d' % now[0] % 100, 'year without century'), ('%Y', '%d' % now[0], 'year with century'), ('%%', '%', 'single percent sign'))
  71.     nonstandard_expectations = (('%c', fixasctime(time.asctime(now)), 'near-asctime() format'), ('%x', '%02d/%02d/%02d' % (now[1], now[2], now[0] % 100), '%m/%d/%y %H:%M:%S'), ('%Z', '%s' % tz, 'time zone name'), ('%D', '%02d/%02d/%02d' % (now[1], now[2], now[0] % 100), 'mm/dd/yy'), ('%e', '%2d' % now[2], 'day of month as number, blank padded ( 0-31)'), ('%h', calendar.month_abbr[now[1]], 'abbreviated month name'), ('%k', '%2d' % now[3], 'hour, blank padded ( 0-23)'), ('%n', '\n', 'newline character'), ('%r', '%02d:%02d:%02d %s' % (clock12, now[4], now[5], ampm), '%I:%M:%S %p'), ('%R', '%02d:%02d' % (now[3], now[4]), '%H:%M'), ('%s', nowsecs, 'seconds since the Epoch in UCT'), ('%t', '\t', 'tab character'), ('%T', '%02d:%02d:%02d' % (now[3], now[4], now[5]), '%H:%M:%S'), ('%3y', '%03d' % now[0] % 100, 'year without century rendered using fieldwidth'))
  72.     if verbose:
  73.         print 'Strftime test, platform: %s, Python version: %s' % (sys.platform, sys.version.split()[0])
  74.     
  75.     for e in expectations:
  76.         
  77.         try:
  78.             result = time.strftime(e[0], now)
  79.         except ValueError:
  80.             error = None
  81.             print "Standard '%s' format gave error:" % e[0], error
  82.             continue
  83.  
  84.         if re.match(escapestr(e[1], ampm), result):
  85.             continue
  86.         
  87.         if not result or result[0] == '%':
  88.             print "Does not support standard '%s' format (%s)" % (e[0], e[2])
  89.         else:
  90.             print 'Conflict for %s (%s):' % (e[0], e[2])
  91.             print '  Expected %s, but got %s' % (e[1], result)
  92.     
  93.     for e in nonstandard_expectations:
  94.         
  95.         try:
  96.             result = time.strftime(e[0], now)
  97.         except ValueError:
  98.             result = None
  99.             if verbose:
  100.                 print "Error for nonstandard '%s' format (%s): %s" % (e[0], e[2], str(result))
  101.             
  102.             continue
  103.  
  104.         if re.match(escapestr(e[1], ampm), result):
  105.             if verbose:
  106.                 print "Supports nonstandard '%s' format (%s)" % (e[0], e[2])
  107.             
  108.         elif not result or result[0] == '%':
  109.             if verbose:
  110.                 print "Does not appear to support '%s' format (%s)" % (e[0], e[2])
  111.             
  112.         elif verbose:
  113.             print "Conflict for nonstandard '%s' format (%s):" % (e[0], e[2])
  114.             print '  Expected %s, but got %s' % (e[1], result)
  115.         
  116.     
  117.  
  118.  
  119. def fixasctime(s):
  120.     if s[8] == ' ':
  121.         s = s[:8] + '0' + s[9:]
  122.     
  123.     return s
  124.  
  125. main()
  126.